home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).zip / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).adf / Include / SameName.i < prev    next >
Text File  |  1989-07-02  |  482b  |  17 lines

  1. {
  2.     SameName.i
  3.  
  4.     This include file contains only one function: SameName.
  5. This routine implements the simplest parts of AmigaDOS pattern matching.
  6. At this point that's just the  # and ? operators, plus the single quote ',
  7. which you place before a # or ? meant to be matched literaly.  Check out
  8. the AmigaDOS books for more information.
  9.     The source for this is in Runtime/Extras, and the object code
  10. is in PCQ.lib
  11. }
  12.  
  13.  
  14. Function SameName(Mask, Target : String) : Boolean;
  15.     External;
  16.  
  17.